home *** CD-ROM | disk | FTP | other *** search
/ A.C.E. 1 / ACE CD 1.iso / files / docs / bubblesd.lha / Bubble&SqueakECSOTTHDInst.lha / TIMS_INSTALLER / Installer.script < prev   
Encoding:
Text File  |  1994-11-21  |  1.2 KB  |  51 lines

  1. Echo ""
  2. Echo "          ********Installer script written by: SPEED 20/11/94********"
  3. Echo ""
  4. Echo "This installer must be in your games drawer where it will automatically"
  5. Echo "create a drawer called `BUBBLE' then prompt you for the appropriate disks."
  6. echo noline "*n Start the Installer? "
  7.  
  8. set > nil: InpVar ?
  9.  
  10. if $InpVar eq "ja"
  11.   skip Start
  12. endif
  13.  
  14. if $InpVar eq "j"
  15.   skip Start
  16. endif
  17.  
  18. if $InpVar eq "y"
  19.   skip Start
  20. endif
  21.  
  22. if $InpVar eq "yes"
  23.   skip Start
  24. endif
  25.  
  26. echo noline "*n*e[32m Install aborted."
  27. quit
  28.  
  29. lab start
  30. makedir >nil: BUBBLE
  31. makedir >nil: BUBBLE/Bubble2
  32. makedir >nil: BUBBLE/Bubble2/Maps
  33. makedir >nil: BUBBLE/Bubble2/Objects
  34. resident >NIL: c:Copy pure add
  35. echo "  Copying files...."
  36. copy >nil: Bubble1: bubble/
  37. copy >nil: Bubble2: bubble/bubble2/
  38. copy >nil: Bubble2:Maps/ bubble/bubble2/maps/
  39. copy >nil: Bubble2:Objects/ bubble/bubble2/objects/
  40. cls
  41. echo ""
  42. echo "Now read the `GAME_ASSIGNS' file to add the appropriate assigns"
  43. echo "else the game won't work."
  44. echo ""
  45. echo "To play the game double click on the `CODE' icon or from cli.. CD to"
  46. echo "the drawer and type `CODE'"
  47. echo ""
  48. echo "NOTE...This installer script can now be deleted from your games drawer."
  49.  
  50. lab end
  51.